home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / pyshared / softwareproperties / distro.py < prev    next >
Text File  |  2008-10-15  |  2KB  |  47 lines

  1. # dialog_apt_key.py.in - edit the apt keys
  2. #  
  3. #  Copyright (c) 2006-2007 Canonical
  4. #  
  5. #  Author: Michael Vogt <mvo@debian.org>
  6. #          Sebastian Heinlein <glatzor@ubuntu.com>
  7. #  This program is free software; you can redistribute it and/or 
  8. #  modify it under the terms of the GNU General Public License as 
  9. #  published by the Free Software Foundation; either version 2 of the
  10. #  License, or (at your option) any later version.
  11. #  This program is distributed in the hope that it will be useful,
  12. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. #  GNU General Public License for more details.
  15. #  You should have received a copy of the GNU General Public License
  16. #  along with this program; if not, write to the Free Software
  17. #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  18. #  USA
  19.  
  20. import aptsources.distro
  21. from gettext import gettext as _
  22.  
  23. def get_popcon_description(distro):
  24.     if isinstance(distro, aptsources.distro.UbuntuDistribution):
  25.         return(_("<i>To improve the user experience of Ubuntu please "
  26.                  "take part in the popularity contest. If you do so the "
  27.                  "list of installed software and how often it was used will "
  28.                  "be collected and sent anonymously to the Ubuntu project " 
  29.                  "on a weekly basis.\n\n"
  30.                  "The results are used to improve the support for popular "
  31.                  "applications and to rank applications in the search "
  32.                  "results.</i>"))
  33.     elif isinstance(distro, aptsources.distro.DebianDistribution):
  34.         return(_("<i>To improve the user experiece of Debian please take "
  35.                  "part in the popularity contest. If you do so the list of "
  36.                  "installed software and how often it was used will be "
  37.                  "collected and sent anonymously to the Debian project.\n\n"
  38.                  "The results are used to optimise the layout of the "
  39.                  "installation CDs."))
  40.     else:
  41.         return(_("Submit the list of installed software and how often it is "
  42.                  "is used to the distribution project."))
  43.  
  44.